home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus Leser 15
/
Amiga Plus Leser CD 15.iso
/
Tools
/
Development
/
mmu
/
Mu680x0Libs
/
VBCC
/
Developer
/
LibSrc
/
MMUBase.c
< prev
next >
Wrap
C/C++ Source or Header
|
2002-03-12
|
290b
|
18 lines
#include <exec/libraries.h>
#include <proto/exec.h>
struct Library *MMUBase = NULL;
extern unsigned long _MMUBaseVer;
void _INIT_5_MMUBase()
{
if (!(MMUBase = OpenLibrary("MMU.library",_MMUBaseVer)))
exit(20);
}
void _EXIT_5_MMUBase()
{
if (MMUBase)
CloseLibrary(MMUBase);
}